home *** CD-ROM | disk | FTP | other *** search
/ Power Hacker 2003 / Power_Hacker_2003.iso / Exploit and vulnerability / w00w00 / exploits / wuftpd-sploit / Makefile.html < prev    next >
Encoding:
Makefile  |  1999-06-07  |  506 b   |  25 lines

  1. # Be very afraid, a Makefile even!
  2. # For wuftpd 2.4 signal vulnerability
  3.  
  4. CC = gcc
  5. #CC = cc
  6.  
  7. CFLAGS  = -Wall # Because we shouldn't get any warnings at all
  8. #CFLAGS = -g
  9.  
  10. #What you want it to be called when it's compiled
  11. PROGNAME = wuftpd
  12.  
  13. #Source to the program
  14. SRC = wuftpd.c port.c
  15.  
  16. #---------------------------------
  17.  
  18. all: wuftpd
  19.  
  20. wuftpd: $(SRC) 
  21.     @echo Wuftpd 2.4 signal sploit w/ muh very 0wn ftp client!
  22.     $(CC) $(CFLAGS) -o $(PROGNAME) $(SRC)
  23.     @echo File was saved as $(PROGNAME)
  24.     @strip $(PROGNAME)
  25.